home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / make / icmake-6.000 / icmake-6 / icmake / un / funcallr.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-08  |  369 b   |  19 lines

  1.  
  2. #include "icmun.h"
  3.  
  4. void fun_call_rss ()
  5. {
  6.     char
  7.         funnr;
  8.  
  9.     funnr = (char) getopcode (infile);
  10.     dumpchar (funnr);
  11.  
  12.     if (funnr >= f_hlt)
  13.         error ("non-existing function call\n"
  14.                "attempt to call function %x, %x are defined",
  15.             funnr, f_hlt);
  16.  
  17.     printf ("callrss %u (%s)\n", (unsigned) funnr, funname [ (int) funnr]);
  18. }
  19.